how to redirect to extern page in .net core

82

how to redirect to extern page in .net core -

public ActionResult YourAction()
{
    // ...
    return Redirect("http://www.example.com");
}

Comments

Submit
0 Comments